/* ==========================================================================
   ZOVA TRADING - LUXURY GOLD & DARK FOOTER STYLING
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&family=El+Messiri:wght@400;600;700&display=swap');

:root {
    --zova-bg-dark: #040507;
    --zova-bg-card: #090c12;
    --zova-gold-primary: #d4af37;
    --zova-gold-light: #f5e6be;
    --zova-gold-bright: #e5c158;
    --zova-gold-dark: #a88219;
    --zova-text-white: #ffffff;
    --zova-text-light: #e0e4ec;
    --zova-text-muted: #9aa3b4;
    --zova-border-gold: rgba(212, 175, 55, 0.3);
}

.ebftr1-footer {
    background: linear-gradient(180deg, #07090e 0%, #030406 100%);
    position: relative;
    color: var(--zova-text-light);
    font-family: 'Cairo', 'El Messiri', sans-serif;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, #d4af37, #f5e6be, #d4af37, transparent) 1;
    padding-top: 50px;
    padding-bottom: 30px;
    overflow: hidden;
    margin-top: 40px;
}

.ebftr1-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 700px;
    height: 280px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.ebftr1-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 1;
}

/* CTA Banner inside Footer */
.ebftr1-cta-bar {
    background: linear-gradient(135deg, rgba(20, 25, 38, 0.95) 0%, rgba(10, 13, 20, 0.98) 100%);
    border: 1px solid var(--zova-border-gold);
    border-radius: 16px;
    padding: 24px 35px;
    margin-bottom: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.ebftr1-cta-text h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.ebftr1-cta-text p {
    color: var(--zova-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.ebftr1-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #a88219 100%);
    color: #000000;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.ebftr1-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f5e6be 0%, #d4af37 100%);
    color: #000000;
}

/* Grid Layout */
.ebftr1-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.5fr 1.1fr 1.8fr;
    gap: 40px;
    padding-bottom: 40px;
}

.ebftr1-col {
    display: flex;
    flex-direction: column;
}

/* Brand Section */
.ebftr1-logo-wrapper {
    display: inline-block;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.ebftr1-logo-wrapper:hover {
    transform: scale(1.03);
}

.ebftr1-logo-wrapper img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.2));
}

.ebftr1-brand-title {
    color: var(--zova-gold-bright);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.ebftr1-brand-desc {
    color: var(--zova-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ebftr1-social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ebftr1-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--zova-border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zova-gold-primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ebftr1-social-icon:hover {
    background: var(--zova-gold-primary);
    color: #040507;
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

/* Column Titles */
.ebftr1-column-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.ebftr1-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, transparent);
    border-radius: 2px;
}

/* Navigation Lists */
.ebftr1-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ebftr1-link {
    color: var(--zova-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ebftr1-link i {
    font-size: 0.75rem;
    color: var(--zova-gold-primary);
    transition: transform 0.25s ease;
    opacity: 0.7;
}

.ebftr1-link:hover {
    color: var(--zova-gold-bright);
    transform: translateX(-5px);
}

.ebftr1-link:hover i {
    opacity: 1;
    transform: translateX(-3px);
}

/* Contact Info Section */
.ebftr1-contact-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ebftr1-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--zova-text-light);
    font-size: 0.93rem;
}

.ebftr1-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zova-gold-bright);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.ebftr1-contact-details strong {
    display: block;
    color: #ffffff;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.ebftr1-contact-details a {
    color: var(--zova-gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.ebftr1-contact-details a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Bottom Bar */
.ebftr1-bottom-wrapper {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 25px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ebftr1-copyright {
    color: var(--zova-text-muted);
    font-size: 0.88rem;
    margin: 0;
}

.ebftr1-copyright strong {
    color: var(--zova-gold-light);
}

.designer-credits {
    font-size: 0.88rem;
    color: var(--zova-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.designer-credits a {
    color: var(--zova-gold-bright);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.designer-credits a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.ebftr1-back-to-top {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--zova-border-gold);
    color: var(--zova-gold-bright);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.ebftr1-back-to-top:hover {
    background: var(--zova-gold-primary);
    color: #040507;
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

/* Responsiveness */
@media (max-width: 1100px) {
    .ebftr1-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .ebftr1-cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .ebftr1-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .ebftr1-column-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .ebftr1-brand-desc {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .ebftr1-social-links {
        justify-content: center;
    }

    .ebftr1-link {
        justify-content: center;
    }

    .ebftr1-contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .ebftr1-bottom-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}